home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / etc / X11 / startDM.sh < prev    next >
Linux/UNIX/POSIX Shell Script  |  2006-04-12  |  932b  |  38 lines

  1. #!/bin/bash
  2. # Copyright 1999-2004 Gentoo Foundation
  3. # Distributed under the terms of the GNU General Public License, v2
  4. # Author: Martin Schlemmer <azarah@gentoo.org>
  5. # $Header: /home/cvsroot/gentoo-x86/x11-base/xfree/files/4.3.99.8/startDM.sh,v 1.1 2003/07/11 22:54:09 spyderous Exp $
  6.  
  7. source /etc/init.d/functions.sh
  8.  
  9. # We need to source /etc/profile for stuff like $LANG to work
  10. # bug #10190.
  11. source /etc/profile
  12.  
  13. # Great new Gnome2 feature, AA
  14. # We enable this by default
  15. export GDK_USE_XFT=1
  16.  
  17. if [ -e ${svcdir}/options/xdm/service ]
  18. then
  19.     retval=0
  20.     EXE="`cat ${svcdir}/options/xdm/service`"
  21.  
  22.     /sbin/start-stop-daemon --start --quiet --exec ${EXE}
  23.     retval=$?
  24.     # Fix bug #26125 for slower systems
  25.     wait; sleep 2
  26.     
  27.     if [ "${retval}" -ne 0 ]
  28.     then
  29.         # there was a error running the DM
  30.         einfo "ERROR: could not start the Display Manager..."
  31.         # make sure we do not have a misbehaving DM
  32.         killall -9 ${EXE##*/}
  33.     fi
  34. fi
  35.  
  36.  
  37. # vim:ts=4
  38.